New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pluginjs/swipeable

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pluginjs/swipeable

A flexible modern swipeable js plugin.

  • 0.7.23
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
increased by200%
Maintainers
2
Weekly downloads
 
Created
Source

Swipeable

npm package

A flexible modern swipeable js plugin.

Samples

Introduction

Installation

Yarn
yarn add @pluginjs/swipeable
NPM
npm i @pluginjs/swipeable

Getting Started

CDN:

Development:

<script src="https://unpkg.com/@pluginjs/swipeable/dist/swipeable.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@pluginjs/swipeable/dist/swipeable.css">

Production:

<script src="https://unpkg.com/@pluginjs/swipeable/dist/swipeable.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/@pluginjs/swipeable/dist/swipeable.min.css">

Initialize

HTML:

<div class="element"></div>

ECMAScript Module:

import Swipeable from "@pluginjs/swipeable"
import "@pluginjs/swipeable/dist/swipeable.css"

Swipeable.of(document.querySelector('.element'), options)

CommonJS:

require("@pluginjs/swipeable/dist/swipeable.css")
const Swipeable = require("@pluginjs/swipeable")

Swipeable.of(document.querySelector('.element'), options)

Browser:

<link rel="stylesheet" href="https://unpkg.com/@pluginjs/swipeable/dist/swipeable.css">
<script src="https://unpkg.com/@pluginjs/swipeable/dist/swipeable.js"></script>
<script>
  Pj.swipeable('.element', options)
</script>

API

Options

Options are called on swipeable instances through the swipeable options itself. You can also save the instances to variable for further use.

NameDescriptionDefault
"container"Container selectornull
"rebound"Support reboundfalse
"reboundPos"Set rebound position100
"offset"Set rebound offset0
"duration"Set duration400
"power"Set decay power2
"decay"Support decayfalse
"axis"Set direction, 'x' or 'y''x'

Events

Events are called on swipeable instances through the swipeable events itself. You can also save the instances to variable for further use.

NameDescription
"ready"Gets fired when plugin is ready
"enable"Gets fired when plugin is enabled
"disable"Gets fired when plugin is disabled
"destroy"Gets fired when plugin is destroy
"start"Gets fired when plugin has be start
"move"Gets fired when plugin has be move
"end"Gets fired when plugin has be end
"resize"Gets fired when plugin has be resize
"decay"Gets fired when plugin has be decay
"decayend"Gets fired when plugin has be decayend

Methods

Methods are called on swipeable instances through the swipeable method itself. You can also save the instances to variable for further use.

NameDescription
"disable"Disable plugin
"enable"Enabled plugin if plugin is disabled
"destroy"Destroy plugin

Classes

Name | Description | Default --|| "NAMESPACE" | Declare plugin namespace | pj-swipeable "VERTICAL" | Declare plugin vertical | {namespace}-vertical "CONTAINER" | Declare container node | {namespace}-container "DISABLED" | Declare plugin is disabled | {namespace}-disabled

Browser support

Tested on all major browsers.

IE / Edge
IE / Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
IE11, Edgelast 2 versionslast 2 versionslast 2 versionslast 2 versions

License

@pluginjs/swipeable is Licensed under the GPL-v3 license.

If you want to use @pluginjs/swipeable project to develop commercial sites, themes, projects, and applications, the Commercial license is the appropriate license. With this option, your source code is kept proprietary.

For purchase an Commercial License, contact us purchase@thecreation.co.

Copyright (C) 2018 Creation Studio Limited.

FAQs

Package last updated on 17 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc